home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_iiscript.asp < prev    next >
Encoding:
Text File  |  1999-06-03  |  486 b   |  31 lines

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3. <!-- #include file="directives.inc" -->
  4.  
  5. <HTML>
  6. <HEAD>
  7. <SCRIPT LANGUAGE="JavaScript">
  8.  
  9. <% 
  10. dim action, actions
  11.  
  12. if Request.QueryString("actions") <> "" then
  13.     
  14.     actions = request.QueryString("actions")
  15.     
  16.     if Request.QueryString("actions").count > 1 then
  17.         for each action in actions
  18.             response.write action    
  19.         next
  20.     else
  21.         response.write actions
  22.     end if 
  23. end if
  24. %>
  25.  
  26. </SCRIPT>
  27. </HEAD>
  28.  
  29. <BODY>
  30. </BODY>
  31. </HTML>